100
How can I remove an event
with AxCalendar1 do
begin
	AutoSize := EXCALENDARLib.AutoSizeEnum.exFixedSize;
	FixedCellWidth := 36;
	Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' + 
	'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' + 
	'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' + 
	'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=');
	Events.Add(AxCalendar1.Date).Image := 1;
	Events.Remove(TObject(AxCalendar1.Date));
end
99
How can I count the events
with AxCalendar1 do
begin
	Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' + 
	'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' + 
	'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' + 
	'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=');
	Events.Add(AxCalendar1.Date).Image := 1;
	var_Count := Events.Count;
end
98
How can I clear all events
with AxCalendar1 do
begin
	Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' + 
	'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' + 
	'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' + 
	'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=');
	Events.Add(AxCalendar1.Date).Image := 1;
	Events.Clear();
end
96
How can I assign an icon to a date

with AxCalendar1 do
begin
	AutoSize := EXCALENDARLib.AutoSizeEnum.exFixedSize;
	FixedCellWidth := 36;
	Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' + 
	'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' + 
	'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' + 
	'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=');
	Events.Add(AxCalendar1.Date).Image := 1;
end
95
How can I enable or disable a date

with AxCalendar1 do
begin
	Events.Add(AxCalendar1.Date).Disabled := True;
end
94
How can I mark or highlight a date

with AxCalendar1 do
begin
	Events.Add(AxCalendar1.Date).Marker := True;
end
93
How can I assign a tooltip or a comment to a date

with AxCalendar1 do
begin
	with Events.Add(AxCalendar1.Date) do
	begin
		Comment := 'This is a text that shows up when the cursor hovers the date';
		CommentTitle := 'T I T L E';
	end;
	HideSelection := True;
end
92
How can I assign any extra data to a date
with AxCalendar1 do
begin
	Events.Add(AxCalendar1.Date).UserData := 'your data';
end
91
How can I change the background color for a date

with AxCalendar1 do
begin
	Events.Add(AxCalendar1.Date).BackColor := $ff;
end
90
How can I change the foreground color for a date

with AxCalendar1 do
begin
	Events.Add(AxCalendar1.Date).ForeColor := $ff;
end
89
How can I draw a date as strikeout

with AxCalendar1 do
begin
	Events.Add(AxCalendar1.Date).StrikeOut := True;
end
88
How can I underline a date

with AxCalendar1 do
begin
	Events.Add(AxCalendar1.Date).Underline := True;
end
87
How can I make italic a date

with AxCalendar1 do
begin
	Events.Add(AxCalendar1.Date).Italic := True;
end
86
How can I bold a date

with AxCalendar1 do
begin
	Events.Add(AxCalendar1.Date).Bold := True;
end
85
How can I get the last visible date being displayed in the calendar
with AxCalendar1 do
begin
	ShowNonMonthDays := False;
	Events.Add(AxCalendar1.LastVisibleDate).Comment := 'This is the last visible date';
end
84
How can I get the first visible date being displayed in the calendar
with AxCalendar1 do
begin
	ShowNonMonthDays := False;
	Events.Add(AxCalendar1.FirstVisibleDate).Comment := 'This is the first visible date';
end
83
How can I hide the ticker that's shown for dates that have a tooltip or a comment
with AxCalendar1 do
begin
	CommentBackColor := BackColor;
	Events.Add(AxCalendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
end
82
How can I change the visual aspect of the dates that have a comment or a tooltip assigned

with AxCalendar1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	(GetOcx() as EXCALENDARLib.Calendar).CommentBackColor := $1000000;
	Events.Add(AxCalendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
	HideSelection := True;
end
81
How can I change the visual aspect of the dates that have a comment or a tooltip assigned
with AxCalendar1 do
begin
	with VisualAppearance do
	begin
		Add(11,'c:\exontrol\images\normal.ebn');
		Add(1,'CP:11 4 2 -2 -2');
	end;
	(GetOcx() as EXCALENDARLib.Calendar).CommentBackColor := $1000000;
	Events.Add(AxCalendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
	HideSelection := True;
end
80
How can I change the color to highlight the dates that have a comment or a tooltip assigned

with AxCalendar1 do
begin
	CommentBackColor := Color.FromArgb(0,0,0);
	Events.Add(AxCalendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
	HideSelection := True;
end
79
How can I hide the days that are shown in gray, and doesn' belong to the month

with AxCalendar1 do
begin
	ShowNonMonthDays := False;
end
78
How can I change the color for non working days

with AxCalendar1 do
begin
	NonworkingDays := 6;
	NonworkingDaysPattern := EXCALENDARLib.PatternEnum.exPatternCross;
	NonworkingDaysColor := Color.FromArgb(255,0,0);
end
77
How can I change the pattern or the style to draw the non working days

with AxCalendar1 do
begin
	NonworkingDays := 6;
	NonworkingDaysPattern := EXCALENDARLib.PatternEnum.exPatternCross;
end
76
How can I show or hide the non working days
with AxCalendar1 do
begin
	NonworkingDays := 0;
end
75
How can I specify the non working days
with AxCalendar1 do
begin
	NonworkingDays := 6;
end
72
How can I specify the min and max years to scroll within
with AxCalendar1 do
begin
	MinScrollYear := 2001;
	MaxScrollYear := 2010;
end
71
How do I let the tooltip being displayed longer

with AxCalendar1 do
begin
	ToolTipPopDelay := 10000;
	Events.Add(AxCalendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
	HideSelection := True;
end
69
How can I change the date that gets the focus
with AxCalendar1 do
begin
	Date := '1/1/2001';
	FocusDate := '1/2/2001';
end
68
How can I select a new date
with AxCalendar1 do
begin
	Date := '1/1/2001';
	Value := '1/2/2001';
end
67
I've seen that the width of the tooltip is variable. Can I make it larger

with AxCalendar1 do
begin
	ToolTipWidth := 328;
	Events.Add(AxCalendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
	HideSelection := True;
end
66
How do I disable showing the tooltip for all control
with AxCalendar1 do
begin
	ToolTipDelay := 0;
	Events.Add(AxCalendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
	HideSelection := True;
end
65
How do I show the tooltip quicker
with AxCalendar1 do
begin
	ToolTipDelay := 1;
	Events.Add(AxCalendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
	HideSelection := True;
end
64
How do I call your x-script language
with AxCalendar1 do
begin
	ExecuteTemplate('BackColor = RGB(255,0,0)');
end
63
How do I call your x-script language
with AxCalendar1 do
begin
	Template := 'BackColor = RGB(255,0,0)';
end
62
Can I change the font for the tooltip

with AxCalendar1 do
begin
	ToolTipDelay := 1;
	with ToolTipFont do
	begin
		Name := 'Tahoma';
		Size := 14;
	end;
	ToolTipWidth := 364;
	Events.Add(AxCalendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
	HideSelection := True;
end
61
How can I change the caption of the Today's button

with AxCalendar1 do
begin
	TodayCaption := 'Azi';
end
59
How do I unselect a date

with AxCalendar1 do
begin
	SingleSel := False;
	Date := '1/1/2001';
	SelDate := '1/2/2001';
	SelDate := '1/3/2001';
	SelDate := '1/4/2001';
	UnSelDate('1/3/2001');
end
58
How do I get the list of selected dates
// SelectionChanged event - Fired when the selection is changed.
procedure TWinForm1.AxCalendar1_SelectionChanged(sender: System.Object; e: System.EventArgs);
begin
	with AxCalendar1 do
	begin
		OutputDebugString( SelDate );
	end
end;


57
How do I select multiple dates

with AxCalendar1 do
begin
	SingleSel := False;
	Date := '1/1/2001';
	SelDate := '1/2/2001';
	SelDate := '1/3/2001';
	SelDate := '1/4/2001';
end
56
How do I get the selected date
with AxCalendar1 do
begin
	SelDate := Date;
end
55
How can I build a date expression
with AxCalendar1 do
begin
	Date := get_DoDate(2001,1,1);
end
54
How can I select a new date

with AxCalendar1 do
begin
	Date := get_DoDate(2001,1,1);
	SelDate := get_DoDate(2001,1,2);
end
53
How can I select a new date
with AxCalendar1 do
begin
	Date := '1/1/2001';
	SelDate := '1/2/2001';
end
52
How can I change the browsed date
with AxCalendar1 do
begin
	Date := '1/1/2001';
end
51
How can I show or hide the buttons that in the header

with AxCalendar1 do
begin
	ShowYearSelector := False;
	ShowMonthSelector := False;
end
50
How can I show or hide the buttons that scrolls the years

with AxCalendar1 do
begin
	ShowYearSelector := False;
end
49
How can I disable changing the month in the months selector

with AxCalendar1 do
begin
	ShowMonthSelector := False;
end
48
How can I change the visual aspect of the selected date, using your EBN

with AxCalendar1 do
begin
	BackColor := Color.FromArgb(255,255,255);
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	(GetOcx() as EXCALENDARLib.Calendar).SelBackColor := $1000000;
	SelForeColor := BackColor;
end
47
How can I change the colors for selected dates

with AxCalendar1 do
begin
	SelBackColor := Color.FromArgb(0,0,0);
	SelForeColor := Color.FromArgb(255,255,255);
end
46
How can I change the color of the line arround a month

with AxCalendar1 do
begin
	DrawBorderLine := EXCALENDARLib.LineStyleEnum.LargeDots;
	BorderLineColor := Color.FromArgb(255,0,0);
end
45
How can I change the style of the line arround a month

with AxCalendar1 do
begin
	DrawBorderLine := EXCALENDARLib.LineStyleEnum.LargeDots;
end
44
How can I specify the number of months being displayed
with AxCalendar1 do
begin
	ShowTodayButton := False;
	ShowYearScroll := False;
	MinMonthX := 2;
	MaxMonthX := 2;
	MinMonthY := 2;
	MaxMonthY := 2;
end
43
How can I lock the control, so user can't select a new date
with AxCalendar1 do
begin
	Locked := True;
end
42
How do I change the first day of the week

with AxCalendar1 do
begin
	FirstDay := EXCALENDARLib.WeekDayEnum.Monday;
end
41
How do I change the name of the months

with AxCalendar1 do
begin
	MonthNames := 'Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec';
end
40
How do I change the name of the months

with AxCalendar1 do
begin
	set_MonthName(EXCALENDARLib.MonthEnum.January,'Jan');
	set_MonthName(EXCALENDARLib.MonthEnum.February,'Feb');
	set_MonthName(EXCALENDARLib.MonthEnum.March,'Mar');
	set_MonthName(EXCALENDARLib.MonthEnum.April,'Apr');
	set_MonthName(EXCALENDARLib.MonthEnum.May,'May');
	set_MonthName(EXCALENDARLib.MonthEnum.June,'Jun');
	set_MonthName(EXCALENDARLib.MonthEnum.July,'Jul');
	set_MonthName(EXCALENDARLib.MonthEnum.August,'Aug');
	set_MonthName(EXCALENDARLib.MonthEnum.September,'Sep');
	set_MonthName(EXCALENDARLib.MonthEnum.October,'Oct');
	set_MonthName(EXCALENDARLib.MonthEnum.November,'Nov');
	set_MonthName(EXCALENDARLib.MonthEnum.December,'Dec');
end
39
How do I change the name for each week day

with AxCalendar1 do
begin
	AutoSize := EXCALENDARLib.AutoSizeEnum.exFixedSize;
	FixedCellWidth := 24;
	FixedCellHeight := 16;
	WeekDays := 'Su Mo Tu We Th Fr Sa';
	HeaderForeColor := Color.FromArgb(255,0,0);
	HeaderBackColor := Color.FromArgb(255,255,255);
end
38
How can I specify the width and height for dates being displayed in the calendar
with AxCalendar1 do
begin
	AutoSize := EXCALENDARLib.AutoSizeEnum.exFixedSize;
	FixedCellWidth := 22;
	FixedCellHeight := 16;
end
37
How can I specify the width and height for dates being displayed in the calendar
with AxCalendar1 do
begin
	AutoSize := EXCALENDARLib.AutoSizeEnum.exFixedSize;
	FixedCellWidth := 32;
	FixedCellHeight := 24;
end
36
How do I change the appearance for dates in the calendar

with AxCalendar1 do
begin
	AppearanceDay := EXCALENDARLib.AppearanceDayEnum.Day3D;
	(GetOcx() as EXCALENDARLib.Calendar).BackColor := $8000000f;
end
35
How do I specify the color for the grid lines

with AxCalendar1 do
begin
	DrawGridLine := EXCALENDARLib.LineStyleEnum.SmallDots;
	GridLineColor := Color.FromArgb(255,0,0);
end
34
How do I draw the grid lines

with AxCalendar1 do
begin
	DrawGridLine := EXCALENDARLib.LineStyleEnum.SmallDots;
end
33
How do I change the foreground color for the week days and week numbers header

with AxCalendar1 do
begin
	HeaderForeColor := Color.FromArgb(255,0,0);
	ShowWeeks := True;
end
32
How do I change the background color for the week days and week numbers header

with AxCalendar1 do
begin
	HeaderBackColor := Color.FromArgb(255,0,0);
	ShowWeeks := True;
end
31
How can I show or hide the 'Today' button

with AxCalendar1 do
begin
	ShowTodayButton := False;
end
30
How can I show or hide the scroll bar that changes the year

with AxCalendar1 do
begin
	ShowYearScroll := False;
end
29
How can I show or hide the header that displays the months

with AxCalendar1 do
begin
	ShowMonth := False;
end
28
How can I show or hide the header that displays the week days

with AxCalendar1 do
begin
	ShowDays := False;
end
27
How do I show or hide the weeks

with AxCalendar1 do
begin
	ShowWeeks := True;
end
26
How can I change the visual appearance of Today date in the calendar

with AxCalendar1 do
begin
	MarkToday := True;
	set_Background(EXCALENDARLib.BackgroundPartEnum.exMarkToday,$ff);
end
25
How do I mark the Today date

with AxCalendar1 do
begin
	MarkToday := True;
end
24
How can I show the control's selection even if the control loses the focus

with AxCalendar1 do
begin
	HideSelection := False;
end
23
How can I hide the control's selection when the control loses the focus

with AxCalendar1 do
begin
	HideSelection := True;
end
22
How do I enable single selection
with AxCalendar1 do
begin
	SingleSel := True;
end
21
How do I enable multiple selection

with AxCalendar1 do
begin
	SingleSel := False;
end
20
How do I disable or enable the control
with AxCalendar1 do
begin
	Enabled := False;
end
19
Can I change the forecolor for the tooltip

with AxCalendar1 do
begin
	ToolTipDelay := 1;
	ToolTipWidth := 364;
	set_Background(EXCALENDARLib.BackgroundPartEnum.exToolTipForeColor,$ff);
	Events.Add(AxCalendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
	HideSelection := True;
end
18
Can I change the background color for the tooltip

with AxCalendar1 do
begin
	ToolTipDelay := 1;
	ToolTipWidth := 364;
	set_Background(EXCALENDARLib.BackgroundPartEnum.exToolTipBackColor,$ff);
	Events.Add(AxCalendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
	HideSelection := True;
end
17
Can I change the default border of the tooltip, using your EBN files

with AxCalendar1 do
begin
	ToolTipDelay := 1;
	ToolTipWidth := 364;
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	set_Background(EXCALENDARLib.BackgroundPartEnum.exToolTipAppearance,$1000000);
	Events.Add(AxCalendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
	HideSelection := True;
end
16
How can I change the visual appearance of the selected month, in the months selector, using EBN files

with AxCalendar1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	set_Background(EXCALENDARLib.BackgroundPartEnum.exMonthSelect,$1000000);
	set_Background(EXCALENDARLib.BackgroundPartEnum.exMonthSelectForeColor,$ff);
end
15
How can I change the visual appearance of Today date in the calendar, using EBN files

with AxCalendar1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\pushed.ebn');
	set_Background(EXCALENDARLib.BackgroundPartEnum.exMarkToday,$1000000);
	set_Background(EXCALENDARLib.BackgroundPartEnum.exDropDownSelForeColor,$1);
	SelForeColor := Color.FromArgb(0,0,0);
	MarkToday := True;
end
14
How can I change the visual appearance of separator between calendar and 'Today' button , using EBN files

with AxCalendar1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	set_Background(EXCALENDARLib.BackgroundPartEnum.exDateSeparatorBar,$1000000);
end
13
How can I change the visual appearance of the scrolling bar for years, using EBN files

with AxCalendar1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn');
	set_Background(EXCALENDARLib.BackgroundPartEnum.exDateScrollRange,$1000000);
	set_Background(EXCALENDARLib.BackgroundPartEnum.exDateScrollThumb,$2000000);
end
12
How can I change the visual appearance of 'Today' button, using EBN files

with AxCalendar1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn');
	set_Background(EXCALENDARLib.BackgroundPartEnum.exDateTodayUp,$1000000);
	set_Background(EXCALENDARLib.BackgroundPartEnum.exDateTodayDown,$2000000);
end
11
How can I change the visual appearance of header , using EBN files

with AxCalendar1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	set_Background(EXCALENDARLib.BackgroundPartEnum.exDateHeader,$1000000);
	HeaderForeColor := Color.FromArgb(255,0,0);
end
10
How can I change the visual appearance of header that week numbers, using EBN files

with AxCalendar1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	set_Background(EXCALENDARLib.BackgroundPartEnum.exWeeksHeader,$1000000);
	HeaderForeColor := Color.FromArgb(255,0,0);
	ShowWeeks := True;
end
9
How can I change the visual appearance of header that displays days, using EBN files

with AxCalendar1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	set_Background(EXCALENDARLib.BackgroundPartEnum.exDaysHeader,$1000000);
end
8
How can I change the visual appearance of the drop down button, using EBN files
with AxCalendar1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn');
	set_Background(EXCALENDARLib.BackgroundPartEnum.exDropDownButtonUp,$1000000);
	set_Background(EXCALENDARLib.BackgroundPartEnum.exDropDownButtonDown,$2000000);
end
7
How do I change the visual appearance of the left and right buttons in the calendar's header, using EBN files

with AxCalendar1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	set_Background(EXCALENDARLib.BackgroundPartEnum.exScrollLeft,$1000000);
	set_Background(EXCALENDARLib.BackgroundPartEnum.exScrollRight,$1000000);
end
6
How do I change the visual appearance of the up and down buttons in the calendar's header, using EBN files

with AxCalendar1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	set_Background(EXCALENDARLib.BackgroundPartEnum.exScrollUp,$1000000);
	set_Background(EXCALENDARLib.BackgroundPartEnum.exScrollDown,$1000000);
end
5
How do I change the control's foreground color

with AxCalendar1 do
begin
	ForeColor := Color.FromArgb(255,0,0);
end
4
How do I change the control's background color

with AxCalendar1 do
begin
	BackColor := Color.FromArgb(200,200,200);
end
3
How can I change the control's font

with AxCalendar1 do
begin
	Font.Name := 'Verdana';
end
2
How do I change the control's border, using your EBN files

with AxCalendar1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	Appearance := EXCALENDARLib.AppearanceEnum($1000000);
end
1
How do I remove the control's border

with AxCalendar1 do
begin
	Appearance := EXCALENDARLib.AppearanceEnum.None2;
end